projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
495d851
)
valid_sp inline fix
author
Paul Eggert
<eggert@cs.ucla.edu>
Sat, 19 Mar 2022 19:35:04 +0000
(12:35 -0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Sat, 19 Mar 2022 19:48:54 +0000
(12:48 -0700)
* src/bytecode.c (valid_sp): static, not INLINE, as INLINE
should be used only in headers and between INLINE_HEADER_BEGIN
and INLINE_HEADER_END. No need for ‘inline’ here.
src/bytecode.c
patch
|
blob
|
history
diff --git
a/src/bytecode.c
b/src/bytecode.c
index ed1f6ca4a85e30890a6f961470555eadef103f27..624649861608a970713e9a810a2e044c33912418 100644
(file)
--- a/
src/bytecode.c
+++ b/
src/bytecode.c
@@
-452,7
+452,7
@@
DEFUN ("internal-stack-stats", Finternal_stack_stats, Sinternal_stack_stats,
}
/* Whether a stack pointer is valid in the current frame. */
-
INLINE
bool
+
static
bool
valid_sp (struct bc_thread_state *bc, Lisp_Object *sp)
{
struct bc_frame *fp = bc->fp;